home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Trial / Camtasia 6 / camtasia.msi / Cabs.w1.cab / MOVSeek.js < prev    next >
Text File  |  2008-10-10  |  246b  |  12 lines

  1. function SeekTime( Time )
  2. {   
  3.    if( document.QuickTimePlayer == undefined || document.QuickTimePlayer == null )
  4.    {
  5.       return;
  6.    }
  7.    
  8.    document.QuickTimePlayer.SetTime( Time * 600 );
  9.    
  10.    document.QuickTimePlayer.Play();
  11. }
  12.